CREATE INDEX system_login_details_login_time_IDX USING BTREE ON system_login_details (login_time);
CREATE INDEX call_details_call_started_on_IDX USING BTREE ON call_details (call_started_on);
CREATE INDEX running_application_details_started_on_IDX USING BTREE ON running_application_details (started_on);
CREATE INDEX employee_working_time_work_logged_on_IDX USING BTREE ON employee_working_time (work_logged_on);
CREATE INDEX system_sleep_details_triggered_on_IDX USING BTREE ON system_sleep_details (triggered_on);
CREATE INDEX temp_filtered_results_login_time_IDX USING BTREE ON temp_filtered_results (login_time);
